Skip to main content

Get Vehicle Details

GET /tms/vehicles/{uuid}

Description

This endpoint retrieves detailed information about a specific vehicle identified by its UUID. The request requires tenant and country codes to be included in the header.

Parameters

  • tenantId (string, header, required): The ID of the tenant.
  • countryCode (string, header, required): The country code where the vehicle is registered.
  • uuid (string, path, required): The unique identifier for the vehicle.

Responses

200 Found the Vehicle

  • Media type: Controls Accept header.
  • Example Value
{
"status": true,
"statusCode": 0,
"message": "Vehicle details retrieved successfully",
"data": {
// Vehicle details go here
},
"errors": []
}

400 Invalid Vehicle id reference supplied

No links

404 Resource not found

No links

LANGUAGE

AUTHORIZATION

Bearer

CURL REQUEST


curl --request GET \ 
--url /tms/vehicles/{uuid} \
--header 'accept: application/json' \
--header 'content-type: application/json'

RESPONSE


Click Try It! to start a request and see the response here!